Pack GtkWidgetPrivate a bit better
authorMatthias Clasen <mclasen@redhat.com>
Sat, 12 Sep 2015 22:54:38 +0000 (18:54 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 12 Sep 2015 22:54:51 +0000 (18:54 -0400)
This makes it shrink from 240 to 232 bytes.

gtk/gtkwidgetprivate.h

index 55ec21450b99feacc7caa75d3f506a6632f31e50..853143cc9f10761b3996fe939925086c208967db 100644 (file)
@@ -140,6 +140,11 @@ struct _GtkWidgetPrivate
   gint allocated_baseline;
   GtkAllocation clip;
 
+#ifdef G_ENABLE_DEBUG
+  /* Number of gtk_widget_push_verify_invariants () */
+  guint verifying_invariants_count;
+#endif /* G_ENABLE_DEBUG */
+
   /* The widget's requested sizes */
   SizeRequestCache requests;
 
@@ -164,11 +169,6 @@ struct _GtkWidgetPrivate
    */
   GHashTable *auto_children;
 
-#ifdef G_ENABLE_DEBUG
-  /* Number of gtk_widget_push_verify_invariants () */
-  guint verifying_invariants_count;
-#endif /* G_ENABLE_DEBUG */
-
   GList *event_controllers;
 
   cairo_font_options_t *font_options;